home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue49
/
Clinic
/
TermApp2U.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1999-06-02
|
671b
|
38 lines
unit TermApp2U;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls;
type
TShutAppForm = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Image1: TImage;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
ShutAppForm: TShutAppForm;
implementation
{$R *.DFM}
procedure TShutAppForm.FormCreate(Sender: TObject);
begin
Image1.Picture.Icon.Handle := LoadIcon(0, IDI_EXCLAMATION);
end;
end.